Skip to main content

jquery 获取checkbox数组全选反选所有值操作

<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN" “http://www.w3.org/TR/html4/loose.dtd“>
<html>
<head>

<script type="text/javascript" src="js/jquery.js"></script>
<style>

</style>
<title>JS获取复选框被选中的值</title>
</head>
<body>
<input type="checkbox" name="aihao" value="0″ />0&nbsp;&nbsp;
<input type="checkbox" name="aihao" value="1″ />1&nbsp;&nbsp;
<input type="checkbox" name="aihao" value="2″ />2&nbsp;&nbsp;
<input type="checkbox" name="aihao" value="3″ />3&nbsp;&nbsp;
<input type="checkbox" name="aihao" value="4″ />4&nbsp;&nbsp;
<input type="checkbox" name="aihao" value="5″ />5&nbsp;&nbsp;
<input type="checkbox" name="aihao" value="6″ />6&nbsp;&nbsp;
<input type="checkbox" name="aihao" value="7″ />7&nbsp;&nbsp;
<input type="button" onclick="jqchk()" value="提 交" />
</body>
</html>


<script>
function chk(){
var obj=document.getElementsByName(‘aihao'); //选择所有name="aihao"的对象,返回数组
//取到对象数组后,我们来循环检测它是不是被选中
var s=";
for(var i=0; i<obj.length; i++){
if(obj[i].checked) s+=obj[i].value+','; //如果选中,将value添加到变量s中
}
//那么现在来检测s的值就知道选中的复选框的值了
alert(s=="?'你还没有选择任何内容!':s);
}

function jqchk(){
var s=";
$(‘input[name="aihao"]:checked').each(function(){
s+=$(this).val()+',';
});
alert(s=="?'你还没有选择任何内容!':s);
}

</script>